/*
 * GRADIENT BAR LINE STYLING
 */
.health, .gradprogress {
  height: 6px;
  width: 100%;
  margin-bottom: 0px;
  padding-top: 1px;
  border-radius: 7px;
  background-color: #26262d;
  border-bottom: 1px solid #1f1f21;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}
.health .gradprogress-bar, .gradprogress .gradprogress-bar {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
  margin-left: 1px;
  border-radius: 7px;
  min-width: 13px;
}
.health .gradprogress-bar:after, .gradprogress .gradprogress-bar:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.2);
  width: 6px;
  height: 6px;
  top: 4px;
  right: 4px;
  border-radius: 3px;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3), 0 1px 1px rgba(255, 255, 255, 0.5);
}

.health .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.warm {
  background: #e83d89;
  background: -moz-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #e83d89), color-stop(100%, #ffa894));
  background: -webkit-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -o-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: -ms-linear-gradient(left, #e83d89 30%, #ffa894 100%);
  background: linear-gradient(to right, #e83d89 30%, #ffa894 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#67cecd", endColorstr="#eaef91",GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -3px 4px rgba(216, 26, 110, 0.4);
  background-size: 800;
  background-position: left center;
}

.cool {
  background: #67cecd;
  background: -moz-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #67cecd), color-stop(100%, #eaef91));
  background: -webkit-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: -o-linear-gradient(left, #67cecd 30%, #ffa894 100%);
  background: -ms-linear-gradient(left, #67cecd 30%, #eaef91 100%);
  background: linear-gradient(to right, #67cecd 30%, #eaef91 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#67cecd", endColorstr="#eaef91",GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 4px rgba(142, 218, 218, 0.4);
}

.calm {
  background: #a9a9a9;
  background: -moz-linear-gradient(left, #a9a9a9 30%, #d3d3d3 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #a9a9a9), color-stop(100%, #d3d3d3));
  background: -webkit-linear-gradient(left, #a9a9a9 30%, #d3d3d3 100%);
  background: -o-linear-gradient(left, #a9a9a9 30%, #d3d3d3 100%);
  background: -ms-linear-gradient(left, #a9a9a9 30%, #d3d3d3 100%);
  background: linear-gradient(to right, #a9a9a9 30%, #d3d3d3 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a9a9a9", endColorstr="#d3d3d3",GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -3px 4px rgba(169, 169, 169, 0.4);
}

.ocean {
  background: #00008b;
  background: -moz-linear-gradient(left, #00008b 30%, #4169e1 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(30%, #00008b), color-stop(100%, #4169e1));
  background: -webkit-linear-gradient(left, #00008b 30%, #4169e1 100%);
  background: -o-linear-gradient(left, #00008b 30%, #4169e1 100%);
  background: -ms-linear-gradient(left, #00008b 30%, #4169e1 100%);
  background: linear-gradient(to right, #00008b 30%, #4169e1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00008b", endColorstr="#4169e1",GradientType=1 );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -3px 4px rgba(0, 0, 139, 0.4);
}
/*
 * END GRADIENT BAR STYLING
 */
p {
  font-size: 0.8rem;
}

h2 {
  font-family: "Architects Daughter";
  font-size: 1.5rem;
  color: #9d9dab;
  display: block;
  text-align: center;
}

b {
  font-weight: 400;
  font-family: "Architects Daughter";
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  margin-bottom: 10px;
  padding: 0 10px 6px 10px;
  font-size: 0.8rem;
  line-height: 0.8;
  position: relative;
}
b:before, b:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #5c5c6c;
  top: 0;
}
b:before {
  left: 0;
}
b:after {
  right: 0;
}

.content > p {
  text-align: center;
}